沒有 Switch 了


react-router-dom V6 沒有 Switch 了

import Switch 要改成 Routes

<Route path='/signin' element={<Signin />} ></Route>

previous:

<Switch>
    <Route path="/signin" exact>
      <Signin />
    </Route>
</Switch>







你可能感興趣的文章

 app.component 和 export default ?

app.component 和 export default ?

程式導師計畫 4th / 第 15 週心得

程式導師計畫 4th / 第 15 週心得

Vue的$ref使用Options之兩種寫法

Vue的$ref使用Options之兩種寫法






留言討論